/* Navbar */
.navbar {
  background-color: #fff;
  padding: 30px 0;
}

/* Contenitore centrale */
.container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.warning-text {
  align-self: flex-start;
  font-size: 1rem;
  color: red;
  font-weight: bold;
  margin-bottom: 10px;
}
/* Logo + Titolo affiancati */
.logo-container {
  display: flex;
  align-items: center;
  gap: 30px;
  margin: 20px;
  text-align: center;
}

/* Immagine logo: tripla rispetto al testo */
.logo-img {
  height: 120px;  /* regolabile */
  width: auto;
  object-fit: contain;
}

/* Titolo */
.logo-text {
  font-size: 1.5rem;
  font-weight: bold;
  color: black;
  margin: 0;
}

/* MENU */
.nav-links {
  display: flex;
  justify-content: center;
  gap: 40px;
  list-style: none;
  padding: 0;
  margin: 0;
  flex-wrap: wrap;
}

.nav-links li a {
  text-decoration: none;
  font-size: 1.8rem;
  color: black;
  transition: color 0.3s;
}

.nav-links li a:hover {
  color: #00aaff;
}